/* === Card Component === */
.card {
    border: 1px solid #131F3B;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    margin: 10px 0;
}

.card .icon i {
    font-size: 50px;
    color: #707070;
}

.card .subtitle-flex {
    color: #707070;
}

.card .middle-text {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0;
    color: #131F3B;
}

.card .footer-text {
    color: #949494;
}

/* === Base Arrow (default = mobile position) === */
.base-wrap {
    position: absolute;
    bottom: -24px;
    left: -18%;
}

.base {
    background: white;
    display: inline-block;
    height: 20px;
    width: 60px;
    margin-left: 20px;
    margin-top: 5px;
    position: relative;
    transform: rotate(180deg);
    border: 1px solid #131F3B;
    border-bottom: 1px solid transparent;
    z-index: 1;
}

.base:before {
    content: "";
    position: absolute;
    top: -35px;
    left: -1px;
    border-bottom: 34px solid #131F3B;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    width: 0;
    height: 0;
}

.base:after {
    content: "";
    position: absolute;
    top: -34px;
    left: 0;
    border-bottom: 34px solid #fff;
    border-left: 29px solid transparent;
    border-right: 29px solid transparent;
    width: 0;
    height: 0.5px;
}

/* === Responsive for desktop and tablets === */
@media (min-width: 769px) {
    .base-wrap {
        top: 47%;
        bottom: auto;
        left: auto;
        right: 0;
        margin-right: -10.5%;
    }

    .base {
        transform: rotate(90deg);
    }
}

/* === Hover Navigation === */
.navmenu:hover {
    color: white !important;
}

/* === Utility & Responsive Cards === */
.post-card {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.card_title {
    text-align: left;
    font-size: 18px;
}

.align_left {
    text-align: left;
}




.blog-details-wrapper .blog-post-item .post-thumbnail img {
    height: 300px;
    object-fit: cover;
    border-radius: 0;
}

.ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
    border: none;
}

.blog-siedbar .active,
.blog-siedbar .active i {
    color: #0a58ca !important;
}